#dialog-fader {
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: rgba(96,96,96,.5);
	display: none;
	z-index: 100000;
}
.dialog-view {
	border-radius: 30px;
	box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.15);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-height: calc(100vh - 30px);
	background-color: #B7CE6B;
	color: white;
}
.dialog-view h1 {
	font-size: 3.6rem;
	font-family: 'Magnolia Script';
	color: white;
	text-transform: none;
	font-weight: normal;
	padding: 0;
}
.dialog-view .dialog-main {
	text-align: center;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
	position: relative;
	background-image: url(images/bg.png);
}
.dialog-view .dialog-footer {
	background-color: white;
	text-align: center;
}
.dialog-view .os-content > div:first-of-type {
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
}
.dialog-view .os-content > div:last-of-type {
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}
.dialog-view .dialog-close {
	background: url(images/close.png);
	width: 26px;
	height: 26px;
	background-size: cover;
	position: absolute;
	cursor: pointer;
	top: 23px;
	right: 23px;
	z-index: 1;
}
.dialog-view input {
	background: white;
	box-shadow: inset 0px 1px 4px rgba(0, 0, 0, 0.25);
	border-radius: 100px;
	font-size: 1.6rem;
	color: #5B5B5B;
	border: none;
	outline: none;
	font-family: RotondaC;
}
.dialog-view input::placeholder {
	color: #BDBCBC;
}
.dialog-view span {
	font-size: 1.5rem;
	font-weight: bold;
}
.dialog-view input.error, .dialog-view textarea.error {
	background-color: #FFC0C0;
}
.dialog-view span.small {
	font-size: 0.875rem;
	font-weight: normal;
}
.dialog-view .dialog-inputs, .dialog-view .dialog-inputs > form {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.dialog-view button {
	width: 339px;
	height: 80px;
	background-image: url(images/orange-button.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.dialog-view .bg-orange button {
	background-image: url(images/white-button.svg);
	color: #FF8C00;
}
.dialog-view .bg-green button {
	background-image: url(images/white-button.svg);
	color: #0E9244;
}
.dialog-view .password {
	position: relative;
	display: flex;
	align-items: center;
}
.dialog-view .password .password-control {
	display: inline-block;
	background-image: url(images/closed-eye.png);
	background-size: cover;
	position: absolute;
	cursor: pointer;
}
.dialog-view .password .password-control.showpass {
	background-image: url(images/opened-eye.png);
}
.dialog-view input[type="radio"], .dialog-view input[type="checkbox"] {
	width: unset;
	height: unset;
	box-shadow: none;
	appearance: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.35);
}
.dialog-view input[type="radio"]::after {
	content: "";
	display: inline-block;
	box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.35);
	border-radius: 50%;
	background-color: white;
}
.dialog-view input[type="radio"]:checked::after {
	background-color: #FF8A00;
}
.dialog-view input[type="checkbox"]::after {
	content: "";
	display: inline-block;
	box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.35);
	background-color: white;
}
.dialog-view input[type="checkbox"]:checked::after {
	background-image: url(images/check.png);
	background-size: 60% 60%;
	background-repeat: no-repeat;
	background-position: center center;
}
.dialog-view input[type="submit"] {
	font-family: RotondaC;
	font-weight: bold;
	font-size: 2.4rem;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
	cursor: pointer;
}
.dialog-view input[type="submit"].blue {
	color: white;
	background-color: #01A7E1;
}
.dialog-view input[type="submit"].orange {
	color: white;
	background-color: #FF8A00;
}
.dialog-view span.error {
	font-weight: normal;
	color: red;
	font-size: 1.6rem;
	font-family: RotondaC;
}
.dialog-view span.response-text {
	color: #5B5B5B;
	display: block;
	font-weight: normal;
	font-size: 1.6rem;
	margin: 5px 0;
	font-family: RotondaC;
}
.dialog-view span.small {
	font-size: 1.6rem;
	font-weight: bold;
	font-family: RotondaC;
}
.dialog-view .dialog-footer-header {
	text-transform: uppercase;
	color: #FF8A00;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	font-family: RotondaC;
}
.dialog-view .social span {
	color: #535352;
	font-family: RotondaC;
	font-size: 1.3rem;
	font-weight: normal;
	line-height: 2;
}
.dialog-view .social-block {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 25px;
}
.dialog-view .social img {
	width: 68px;
	margin: 0 15px;
	cursor: pointer;
}
.dialog-view .file {
	cursor: pointer;
	padding: 20px;
	height: 142px;
}
.dialog-view input[type="file"] {
	position: absolute;
	left: -9999px;
}

@media (min-width: 1200px) {
	.dialog-view h1 {
		margin-bottom: 30px;
	}
	.dialog-view .dialog-main {
		padding: 85px 70px 35px 70px;
	}
	.dialog-view .dialog-footer {
		padding: 20px 70px 35px 70px;
	}
	.dialog-view .password input {
		padding-right: 50px;
	}
	.dialog-view .password .password-control {
		width: 21px;
		height: 21px;
		right: 20px;
	}
	.dialog-view input[type="radio"] {
		margin-left: 7px;
		margin-top: 2px;
	}
	.dialog-view input[type="radio"]::after {
		width: 17px;
		height: 17px;
	}
	.dialog-view input[type="checkbox"] {
		
	}
	.dialog-view input[type="checkbox"]::after {
		width: 18px;
		height: 18px;
		border-radius: 5px;
	}
	.dialog-view input {
		width: 350px;
		height: 40px;
		padding: 0 20px;
		margin: 5px 0;
	}
	.dialog-view textarea, .dialog-view .file {
		width: 350px;
		height: 142px;
		padding: 8px 20px;
		margin: 5px 0;
	}
	.dialog-view .file {
		height: 142px;
		width: 350px;
		margin: 5px 0;
		background-size: 78px 71px;
	}
	.dialog-view .password {
		width: 350px;
	}
	.dialog-view span.small {
		line-height: 25px;
	}
	.dialog-view input[type="submit"] {
		margin-top: 40px;
	}
	.dialog-view span.error {
		margin-top: 12px;
	}
}
@media (min-width: 992px) {
	
}
@media (min-width: 768px) {
	
}
@media (min-width: 576px) {
	
}
@media (max-width: 575px) {
	
}